home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / prog / pas_all.zip / TI113.ASC < prev    next >
Text File  |  1991-09-11  |  2KB  |  133 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.  
  9.   PRODUCT : TURBO PASCAL                               NUMBER : 113
  10.   VERSION : 2.00x
  11.        OS : MS-DOS, IBM PC
  12.      DATE : April 7, 1986                                PAGE : 1/2
  13.     TITLE : INTERRUPT 3 PATCH
  14.  
  15.  
  16.  
  17.  
  18.   Turbo Pascal redefines the interrupt 3 vector to its own
  19.   interrupt service routine used for handling Ctrl-C. However, the
  20.   vector is permanently initialized to that interrupt routine even
  21.   though the "U-" directive is specified.
  22.  
  23.   This patch will permanently keep the Ctrl-C vector from being
  24.   initialized, but will allow the use of DEBUG break points.
  25.  
  26.   Use the DOS utility, DEBUG, to apply the following patch to a
  27.   copy of your .COM file. Copy DEBUG.COM into the directory (or
  28.   onto the diskette) where your working copy of .COM is located.
  29.   At the DOS prompt, type the following information exactly as it
  30.   appears. (Conclude each line by pressing <Enter>.)
  31.  
  32.   Note: 1.  DEBUG is not sensitive to upper and lower case. All
  33.             addresses  are listed in upper case for ease of
  34.             readability.
  35.  
  36.         2.  While in DEBUG, the prompt appears as a dash (-).
  37.  
  38.         3.  If you do not receive the appropriate response, press
  39.             "q", then <Enter>, to quit. Check your version numbers
  40.             and, if correct, try again.
  41.  
  42.   For IBM versions of Turbo Pascal:
  43.  
  44.   YOU TYPE              THIS APPEARS
  45.  
  46.   DEBUG TURBO.COM          -
  47.   e0BE2                    XXXX:0EB2 E8.
  48.   90<Space>            DC.
  49.   90<Space>            FD.
  50.   90<Enter>            -
  51.   w<Enter>              writing xxxx bytes
  52.   q<Enter>              DOS prompt
  53.  
  54.  
  55.   For Generic versions of Turbo Pascal:
  56.  
  57.   YOU TYPE              THIS APPEARS
  58.  
  59.   DEBUG TURBO.COM          -
  60.   e0922                    xxxx:0922 E8.
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.  
  71.  
  72.  
  73.  
  74.  
  75.   PRODUCT : TURBO PASCAL                               NUMBER : 113
  76.   VERSION : 2.00x
  77.        OS : MS-DOS, IBM PC
  78.      DATE : April 7, 1986                                PAGE : 2/2
  79.     TITLE : INTERRUPT 3 PATCH
  80.  
  81.  
  82.  
  83.  
  84.   90<Space>            D1.
  85.   90<Space>            FD.
  86.   90<Enter>            -
  87.   w<Enter>              writing xxxx bytes
  88.   q<Enter>              DOS prompt
  89.  
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129.  
  130.  
  131.  
  132.  
  133.